home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / CUJ9202.ARJ / 1002027B < prev    next >
Text File  |  1992-06-02  |  169b  |  22 lines

  1.  
  2. #include <stdio.h>
  3.  
  4. void f(void);
  5.  
  6. main()
  7. {
  8.     int i;
  9.  
  10.     for (i = 0; i <= 2; ++i)
  11.         f();
  12. }
  13.  
  14. void f(void)
  15. {
  16.     int j;
  17.  
  18.     printf("j = %d\n", j);
  19.     ++j;
  20. }
  21.  
  22.